Skip to contentMethod: ParserException(String, Throwable)
      1: /**
2:  * 
3:  */
4: package parser;
5: 
6: /**
7:  * @author Muri
8:  * 
9:  */
10: public class ParserException extends Exception {
11: 
12:         /**
13:          * 
14:          */
15:         private static final long serialVersionUID = -5551411291120072305L;
16: 
17:         /**
18:          * @param arg0
19:          *            arg0
20:          */
21:         public ParserException(final String arg0) {
22:                 super(arg0);
23:         }
24: 
25:         /**
26:          * 
27:          * @param message
28:          *            is the message for the exception.
29:          * @param throwable
30:          *            is the throwable which is encapsulated.
31:          */
32:         public ParserException(final String message, final Throwable throwable) {
33:                 super(message, throwable);
34:         }
35: }